Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@financial-times/ads-heavy-ad-reporting
Advanced tools
This package sets up an instance of the [`ReportingObserver`](https://developer.mozilla.org/en-US/docs/Web/API/ReportingObserver/ReportingObserver) class, which collects reports of type `intervention` generated by the browser.
This package sets up an instance of the ReportingObserver
class, which collects reports of type intervention
generated by the browser.
A callback
is executed every time a report is created, which subsequently sends a post message - with type oAds.heavyAdIntervention
- to the parent window.
The Google Chrome browser generates a report whenever a heavy ad is detected, and immediately removes the third-party creative from the iframe. Unfortunately the intervention is not guaranteed.
However, because the intervention will literally remove the page from the iframe, a failsafe is added to ensure that the report is definitely captured before the page is gone completely, for example, an ad within an iframe. See also, Google's documentation What happens when an ad is removed?
/** @typedef {import("$typings/heavy-ad-reporting")} */
import { monitorHeavyAdsIntervention } from '@financial-times/ads-heavy-ad-reporting';
/**
* Process the reports
* @param {HeavyAdReportingT.Report[]} reports
*/
const onReportsReceived = reports => {
for (let report of reports) {
console.log('Report detected', report);
}
}
monitorHeavyAdsIntervention({
onReportsReceived
})
FAQs
This package sets up an instance of the [`ReportingObserver`](https://developer.mozilla.org/en-US/docs/Web/API/ReportingObserver/ReportingObserver) class, which collects reports of type `intervention` generated by the browser.
The npm package @financial-times/ads-heavy-ad-reporting receives a total of 82 weekly downloads. As such, @financial-times/ads-heavy-ad-reporting popularity was classified as not popular.
We found that @financial-times/ads-heavy-ad-reporting demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.